home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / MAXRAM.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  126 b   |  10 lines

  1. #include <dos.h>
  2.  
  3. long MaxRAM( void )
  4. {
  5.     union REGS reg;
  6.  
  7.     int86( 0x12, ®, ® );
  8.     return( 1024L * reg.x.ax );
  9. }
  10.